/* @font-face {
    font-family: 'HelveticaNeue';
    src: url('./fonts/HelveticaNeue.otf') format('opentype');
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: sans-serif;
    background-color: black;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    background-size: cover;
    background-position: center top;
}

.screen-glow {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    transition: box-shadow 0.3s ease;
}

.screen-glow.pulsing {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: inset 0 0 150px 80px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: inset 0 0 250px 120px rgba(255, 255, 255, 0.4);
    }
}

#background-overlay {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    filter: brightness(1) opacity(1);
    transition: filter 0.3s ease;
    background-image: url("../system/imgs/backgrounds/bleached/000.jpeg");
}

.dev-notification {
    background-color: #f0f0f0;
    color: #333;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
    cursor: default;
}

.devSpace {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    position: absolute;
    background-color: rgb(192, 65, 65);
    color: #FFF;
    padding: 20px;
    right: 60%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #000;
    border-radius: 5px;
    width: 400px;
    z-index: 999999999999999999999999;
}

.devSpace button {
    padding: 10px;
}

.phone {
    margin: auto;
    width: 460px;
    position: relative;
    height: 100vh;
    max-height: 945px;
    display: flex;
    justify-content: center;
}

.screen {
    position: absolute;
    top: 0%;
    width: 442px;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
}

.phone-event {
    position: absolute;
    width: 96%;
    height: 100%;
    border-radius: 60px;
    object-fit: cover;
}

.facetime {
    position: absolute;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    height: 100%;
    padding: 15% 0;
}

.facetime .face-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.facetime p {
    text-align: center;
}

.facetime .face-actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 10%;
    align-items: center;
}

.facetime .endCall {
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 10%;
}

.facetime .face-others {
    background-color: #A9A9A9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.template {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999999999999999999999999999999999;
}

.phone .wallpaper {
    width: 98%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    display: block;
    border-radius: 65px;
}

.btn {
    display: flex;
    justify-content: center;
    border-radius: 10%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #cccccca1;
}

.btn-container {
    position: absolute;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
}

.phone .nav-buttons {
    bottom: 1.3%;
    width: 65%;
    flex-flow: row nowrap;
}

.phone .nav-buttons .btn {
    width: auto;
    height: auto;
}

.phone .nav-buttons .btn img {
    width: 50%;
    height: auto;
}

/* ============= Home Screen ================*/
.apps {
    display: flex;
    flex-flow: row wrap;
    justify-content: initial;
    width: 83%;
    gap: 15px;
}

.apps .btn {
    display: flex;
    width: 80px;
    flex: 0 1 22%;
    max-width: 80px
}

.apps .btn img {
    width: 100%;
    height: auto;
}

.menu-up {
    bottom: 145px;
}

.toolapps {
    bottom: 60px;
    display: flex;
    flex-flow: row nowrap;
}

.apps .weather-widget {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.apps .weather-widget .wwctn {
    width: 40%;
    background-color: #00000084;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

.apps .weather-widget .current-day {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    align-items: center;
    border-bottom: 2px solid rgba(231, 223, 223, 0.509);
    width: 100%;
    padding-bottom: 5px;
}

.apps .weather-widget .current-day img {
    width: 80px;
}

.apps .weather-widget .others {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 80%;
    padding-top: 5px;
    align-items: center;
}

.apps .weather-widget .others div:nth-child(1) {
    font-size: 14px;
}

.apps .weather-widget .others img {
    width: 20px;
}

.apps .weather-widget .others span {
    border-right: 2px solid rgba(231, 223, 223, 0.509);
    height: 80%;
}

/*================= Choices Modal ================*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    display: block;
}

.modal {
    position: absolute;
    bottom: 9px;
    left: 22px;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 55px;
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999999999999;
    width: 90.8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.modal p {
    margin-bottom: 15px;
    font-size: 17px;
    text-align: center;
    width: 90%;
}

.modal-btn-container {
    display: flex;
    width: 100%;
    margin-top: 15px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.modal-btn {
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 80%;
    transition: background-color 0.3s ease;
    text-align: center;
    background-color: #cccccca1;
}

.modal-btn:hover {
    background-color: #a4a0a0bd;
}

/*==================== Whats home ===================*/
.whats {
    background-color: white;
    width: 98%;
    height: 100%;
    border-radius: 12%;
}

.whats .nav {
    width: 100%;
    height: 6.5%;
    left: 10px;
    top: 0;
    border-bottom: rgba(128, 128, 128, 0.493) 1px solid;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}

.whats .nav .logo {
    margin-left: 7%;
    margin-top: 2%;
    width: 28%;
    height: 100%;
    display: flex;
    align-items: center;
}

.whats .nav .logo img {
    width: 100%;
    height: auto;
}

.whats .nav-container {
    margin-right: 3%;
    width: 30%;
    position: absolute;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    top: 2.1%;
    right: 2%;
}

.whats .nav-container .btn {
    padding: 4px;
}

.whats .nav-container img {
    width: 24px;
    height: 24px;
}

.whats .chat-list {
    width: 97%;
    height: 88.3%;
    left: 2%;
    flex-flow: column nowrap;
    justify-content: flex-start;
    overflow-x: hidden;
}

.whats .chat-list::-webkit-scrollbar {
    display: none;
}

.whats .chat-list .item {
    margin-left: 1%;
    width: 97.5%;
    height: 10%;
    border-radius: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4%;
    position: relative;
}

.whats .avatar {
    border-radius: 50%;
    width: auto;
    height: 80%;
}

.whats .chat-list .item .info {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    padding-left: 3%;
    gap: 9px;
}

.whats .chat-list .item .info span {
    font-weight: bold;
    font-size: 16px;
}

.whats .chat-list .item .info p {
    font-size: 15px;
    overflow: hidden;
    height: 20px;
    width: 270px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whats .chat-list .item .pendent {
    padding: 10px;
    border-radius: 50%;
    background-color: #2fa46b;
    right: 5%;
    position: absolute;
    width: 20px;
}

.whats .chat-list .item .pendent-call {
    right: 5%;
    position: absolute;
    width: 20px;
}

/*================= Whats chat ================*/

.whats .nav .chat-opened {
    left: 2%;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    padding-right: 5px;
}

.whats .nav .chat-opened img {
    width: auto;
}

.whats .nav span {
    width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whats .nav .chat {
    margin-top: -2px;
}

.whats .nav .chat-opened-nav-itens img {
    width: 24px;
    height: 24px;
    padding: 2px;
}

.whats .chat {
    background-image: url("../system/imgs/whats-wallpaper.jpg");
    width: 100%;
    height: 88.5%;
    border-radius: 0 0 10px 10px;
}

.whats .chat .messages {
    height: 93.8%;
    display: flex;
    flex-flow: column nowrap;
    align-items: baseline;
    overflow: auto;
    gap: 8px;
    padding-top: 8px;
}

.whats .chat .messages .person {
    font-size: 12px;
}

.whats .chat .messages::-webkit-scrollbar {
    display: none;
}

.chat .decorative-options-bottom {
    position: absolute;
    bottom: 5.5%;
    display: flex;
    flex-flow: row nowrap;
    left: 4%;
    width: 92%;
    justify-content: space-between;
}

.chat .decorative-options-bottom .white-contend-box {
    background-color: white;
    display: flex;
    flex-flow: row nowrap;
    padding: 5px;
    border-radius: 100px;
    width: 89%;
    gap: 10px
}

.chat .decorative-options-bottom .white-contend-box input {
    width: 100%;
    border: none;
    background-color: white;
    cursor: pointer;
    outline: none;
}

.chat .decorative-options-bottom .white-contend-box div {
    padding: 4px;
    border-radius: 50%;
}

.chat .decorative-options-bottom .mic-button {
    background-color: #27a768;
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.chat .decorative-options-bottom .mic-button img {
    width: 24px;
    height: 24px;
}

.message {
    position: relative;
    max-width: 70%;
    padding: 8px;
    display: flex;
    flex-flow: column nowrap;
    gap: 4px;
}

#msg-sound {
    display: none;
}

.message:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.message.sent {
    background: #e1ffc7;
    border-radius: 5px 0px 5px 5px;
    float: right;
    margin-right: 5%;
    align-self: flex-end;
}

.message.sent:before {
    border-width: 10px 10px 0 0;
    border-color: #e1ffc7 transparent transparent transparent;
    top: 0;
    right: -10px;
}

.message.received {
    background: #fff;
    border-radius: 0px 5px 5px 5px;
    float: left;
    margin-left: 5%;
}

.message.received:before {
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
    top: 0;
    left: -10px;
}

.message img {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.expanded img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    z-index: 99999999999999999;
    cursor: pointer;
}

.message video {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    min-height: 161.39px;
}

/*==================== dialogue-box ================== */

.dialogue-box {
    background: linear-gradient(to right, #333333b5, #000000ab, #000000ab, #333333b5);
    position: absolute;
    bottom: 0;
    width: 100vw;
    min-height: 25vh;
    z-index: 999999999999999999999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}

.dialogue-box .content {
    width: 700px;
    height: 20%;
    z-index: 2;
    padding: 10px;
    color: #ccccc8;
    max-width: 958px;
    display: flex;
    flex-flow: column nowrap;
    gap: 15px;
    height: 100%;
}

.dialogue-box .content span {
    font-weight: bold;
    font-size: 20px;
}

.dialogue-box .content p {
    font-size: 19px;
}

/* ========== Choices ========= */

.choices {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    z-index: 999999999999999;
    align-items: center;
    justify-content: center;
    width: auto;
    width: 75%;
}

.choices .option {
    width: 100%;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    color: #FFF;
    background: linear-gradient(to right, #333333, #000000e8, #000000ed, #333333);
    border-radius: 5px;
    font-size: 18px;
}

.choices .option:hover {
    background: linear-gradient(to right, #64626294, #1e1d1d71, #64626294);
}

.choices .prompt {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 5px;
}

.choices .prompt div {
    width: 48px;
    height: 50px;
    background-color: #1e1d1d91;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30%;
}

.choices .prompt div img {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.choices input {
    border: none;
    padding: 10px;
    width: 60%;
    border-radius: 20px;
    background-color: #1e1d1d91;
    outline: none;
    color: #FFF;
    font-size: 17px;
    text-align: center;
}

/* ============== Notification ============ */

.phone .screen .notification {
    background: #353535;
    width: 90%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 60px;
    z-index: 999999999;
    font-family: 'Poppins', sans-serif;
}

.phone .screen .notification .icon {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    border-radius: 10px;
    background: linear-gradient(#d7cfcf, #9198e5);
    overflow: hidden;
    flex-shrink: 0;
}

.phone .screen .notification:hover .icon {
    background: linear-gradient(#9198e5, #712020);
}

.phone .screen .notification .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.phone .screen .notification .content {
    width: calc(100% - 90px);
    margin-left: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.phone .screen .notification .text-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone .screen .notification .app-name {
    font-size: 16px;
    font-weight: bold;
}

.phone .screen .notification .time {
    font-size: 10px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone .screen .notification .content span {
    font-size: 12px;
    font-weight: bold;
}

.phone .screen .notification .content p {
    font-size: 12px;
    font-weight: lighter;
    margin: 0;
}

.phone .screen .notification .notification-progress {
    max-width: 90%;
    width: 90%;
    margin-left: 20px;
    height: 4px;
    background-color: #ffffffaa;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.1s linear;
}

/* ============== Phone-app ============ */

.phone-app {
    background-color: #FFF;
    width: 96%;
    height: 100%;
    border-radius: 60px;
}

.phone-app .nav {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 100%;
    height: 95px;
    justify-content: flex-end;
}

.phone-app .nav .search {
    padding: 10px;
    background-color: #d8d5d5b0;
    border-radius: 10px;
    outline: none;
    border: none;
    width: 90%;
    cursor: text;
}

.phone-app .phone-list {
    width: 100%;
    height: 84.4%;
    padding: 13.5px 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

.phone-app .phone-list::-webkit-scrollbar {
    display: none;
}

.phone-app .phone-list .person {
    display: flex;
    flex-flow: row nowrap;
    width: 99%;
    justify-content: flex-start;
    gap: 15px;
    height: 10%;
    border-radius: 0;
    align-items: center;
    padding-left: 22px;
    margin-left: 1%;
}

.phone-app .phone-list .person img:nth-child(1) {
    width: auto;
    height: 85%;
    border-radius: 50%;
}

.phone-app .phone-list .person img:last-child {
    margin-left: auto;
    margin-right: 20px;
    padding: 10px;
}

.phone-list .add-button {
    background-color: #27a768;
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 7%;
    border-radius: 50%;
    display: none;
}

.phone .phone-call {
    background: linear-gradient(to bottom, #7e95c1, #2d3b53);
    width: 96%;
    height: 100%;
    border-radius: 60px;
}

.phone .phone-call .content {
    width: 100%;
    height: 95%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
}

.phone .phone-call .content .info {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.phone .phone-call .content .info img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.phone .phone-call .content .info span {
    color: #FFF;
    font-size: 30px;
}

.phone .phone-call .content .info p {
    color: #e4e0e0;
}

.phone .phone-call .content .actions {
    display: flex;
    justify-content: center;
}

.phone .phone-call .content .end-call {
    background-color: red;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.phone .phone-call .content .end-call img {
    width: 24px;
    height: auto;
}

/* ========= New Contact ========= */
.phone .new-contact {
    background-color: #302c2c;
    height: 100%;
    width: 96%;
    border-radius: 60px;
}

.phone .new-contact .content {
    height: 95%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.phone .new-contact .content .info {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    align-items: center;
}

.phone .new-contact .content .info .profile {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-top: 120px;
    gap: 30px;
}

.phone .new-contact .content .info .profile img {
    width: 40%;
    height: auto;
    border-radius: 50%;
}

.phone .new-contact .content .info .inp {
    padding: 10px;
    width: 60%;
    border-radius: 10px;
    border: none;
    background-color: #e0e3e9;
    text-align: center;
    font-size: 16px;
    outline: none
}

.phone .new-contact .content .info .rel {
    background-color: #e0e3e9;
    width: 60%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
}

.phone .new-contact .content .info .rel .inp {
    width: 100%;
}

.phone .new-contact .content .add-button {
    background-color: #e0e3e9;
    ;
    margin-bottom: 20px;
    padding: 20px;
    width: 60%;
    border-radius: 10px;
    text-align: center;

}

/* ============== Insta =============== */
.phone .insta {
    background-color: #FFF;
    width: 96%;
    height: 100%;
    border-radius: 60px;
}

.phone .insta .content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    width: 100%;
    height: 94.8%;
}

.phone .insta .content .header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
    height: 7%;
    border-bottom: rgba(0, 0, 0, 0.066) 1px solid;
}

.phone .insta .content .header .nave {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    width: 30%;
    margin-right: 20px;
    margin-top: 8px;
}

.phone .insta .content .header .nave div {
    padding: 5px
}

.phone .insta .content .header .nave img {
    width: 24px;
    height: 24px;
}

.phone .insta .content .header .logo {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 13px;
    margin-left: 23px;
}

.phone .insta .content .header .logo img {
    width: 100%;
}

.no-posts-message {
    background-color: #eae2e25f;
    padding: 60px;
    width: 90%;
    align-self: center;
    text-align: center;
    border-radius: 20px;
    font-size: 20px;
    border: 1px solid #000;
}

.phone .insta .content .posts {
    width: 100%;
    height: 100%;
    flex-flow: column nowrap;
    overflow-x: hidden;
    overflow-y: auto;
}

.phone .insta .content .posts::-webkit-scrollbar {
    display: none;
}

.phone .insta .content .post {
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    margin-bottom: 20px;
}

.phone .insta .content .posts .post .thumb {
    width: 100%;
    height: auto;
}

.phone .insta .content .posts .post .person {
    position: absolute;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    color: #FFF;
    gap: 10px;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 10px;
}

.phone .insta .content .posts .post .person img {
    width: 36px;
    border-radius: 50%;
}

.phone .insta .content .posts .post .actions {
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;
    margin: 5px 10px;
    padding-bottom: 5px;
    border-bottom: rgba(0, 0, 0, 0.066) 1px solid;
}

.phone .insta .content .posts .post .actions div {
    padding: 10px;
    gap: 5px;
    align-items: center;
}

.phone .insta .content .posts .post .actions div img {
    width: 24px;
    height: 24px;
}

.phone .insta .content .posts .post .post-caption {
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #262626;
}

.phone .insta .content .posts .post .post-caption .username {
    font-weight: 600;
    margin-right: 6px;
}

.phone .insta .content .posts .post .post-caption .description {
    color: #262626;
}

.phone .insta .content .posts .post .comment-list {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}

.phone .insta .content .posts .post .comment {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-left: 5px;
    margin-top: 6px;
}

.phone .insta .content .posts .post .comment .person {
    width: 60px;
    display: flex;
    position: initial;
    align-items: center;
    margin: 0;
}

.phone .insta .content .posts .post .comment img {
    width: 40px;
    height: auto;
}

.phone .insta .content .posts .post .comment .text {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    margin-left: 20px;
}

.phone .insta .content .posts .post .comment .text span {
    font-weight: bold;
    font-size: 14px;
}

.phone .insta .content .posts .post .comment .text p {
    font-size: 15px;
}

.cnbtnd {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    z-index: 1;
}

.smash-video .cnbtnd {
    bottom: 177px;
    color: #111;
    font-weight: bold;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 15px;
    z-index: 9999999;
}

.cnbtnd:hover {
    transform: translateX(-50%) scale(1.1);
}

.phone .insta .content .footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    border-bottom: rgba(0, 0, 0, 0.066) 1px solid;
}

.phone .insta .content .footer div {
    padding: 10px;
}

.phone .insta .content .footer img {
    width: 24px;
    height: 24px;
}

.onlfppa {
    background-color: #FFF;
    width: 98%;
    height: 100%;
    border-radius: 60px;
    display: flex;
    flex-flow: column nowrap;
}

.onlfppa .head {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.135);
}

.onlfppa p {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-top: 350px;
}

.onlfppa div {
    padding: 30px;
}

.onlyfansevent {
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    height: 100%;
    padding: 15% 0;
}

.ofliveinfo {
    display: flex;
    justify-content: space-between;
    width: 90%;
    align-items: center;
}

.ofliveinfo .nickname {
    font-size: 18px;
    font-weight: bold;
    text-transform: lowercase;
    display: flex;
    gap: 5px;
}

.ofliveinfo .live {
    background-color: red;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.oflivecontent {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 120px;
    width: 100px;
    overflow: hidden;
    pointer-events: none;
}

.of-emoji {
    position: absolute;
    bottom: 0;
    font-size: 2rem;
    animation: floatUp 5s ease-out forwards;
    user-select: none;
    opacity: 0.9;
}


@keyframes floatUp {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }

    25% {
        transform: translateX(-8px) translateY(-25vh);
    }

    50% {
        transform: translateX(6px) translateY(-50vh);
    }

    75% {
        transform: translateX(-4px) translateY(-75vh);
    }

    100% {
        transform: translateX(0) translateY(-100vh);
        opacity: 0;
    }
}

.oflivecomments {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 5px;
    align-items: center;
    width: 90%;
}

.oflivecomments input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.oflivecomments input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.oflivecomments button {
    background: none;
    border: none;
    cursor: not-allowed;
    padding: 6px;
}

.oflivecomments button img {
    width: 18px;
    height: 18px;
    opacity: 0.5;
}















.oflivecomments-floating {
    position: absolute;
    left: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 220px;
    overflow: hidden;
    height: 315px;
    padding: 4px;
    scroll-behavior: smooth;
}

.comment-bubble {
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    max-width: 100%;
    word-break: break-word;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.comment-bubble .name {
    font-weight: bold;
    color: #FFF;
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    text-transform: lowercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




























/* Config */
.phone .config {
    background-color: #FFF;
    width: 96%;
    height: 100%;
    border-radius: 60px;
}

.phone .config .content {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    height: 94.8%;
}

.phone .config .prompt {
    width: 96.5%;
    height: 100%;
    background-color: #00000098;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 60px;
}

.phone .config .prompt .bla {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
    padding: 50px;
    border-radius: 10px;
    gap: 20px;
    width: 90%;
}

.phone .config .prompt .bla p {
    text-align: center;
}

.phone .config .prompt .actions {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.phone .config .prompt .actions button {
    border: none;
    width: 45%;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #00000098;
    color: #FFF;
    transition: 0.3s;
}

.phone .config .prompt .actions button:hover {
    cursor: pointer;
    background-color: #00000031;
}

.phone .config .content .header {
    margin-top: 50px;
    /* background-color: red; */
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding: 5px;
}

.phone .config .content .header span {
    text-align: center;
    font-size: 22px;
    margin: 10px 0;
}

.phone .config .content .option {
    display: flex;
    align-items: center;
    transition: 0.3s;
    width: 100%;
    padding: 3px;
    gap: 5px;
    font-size: 17px;
}

.phone .config .content .option img {
    margin-left: 20px;
    width: 40px;
    height: auto;
}

.phone .config .content .option:hover {
    background-color: #b3afaf83;
    cursor: pointer;
}

.phone .config .content-save {
    width: 100%;
    height: 100%;
}

.phone .config .save-container {
    background-color: rgba(128, 128, 128, 0.224);
    width: 80%;
    height: 488px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 10px;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
}

.phone .config .save-container::-webkit-scrollbar {
    display: none;
}

.phone .config .save-container .no-saves {
    text-align: center;
    padding: 5px;
    margin: 0;
}

.phone .config .save-container input {
    width: 136.57px;
    padding: 5px;
    margin: 0;
    font-size: 16px;
    border: none;
    background-color: #00000021;
    outline: none;
    border-radius: 3px;
    text-align: center;
}

.phone .config .save-container input::selection {
    background-color: rgba(104, 76, 76, 0.567);
}

.phone .config .save-container .save {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    padding: 8px;
    background-color: #ffffffea;
    border-radius: 5px;
    cursor: default;
    transition: 0.5s;
}

.phone .config .save-container .highlight {
    background-color: rgba(128, 128, 128, 0.556);
}

.phone .config .save-container .save .save-load-btn {
    background-color: rgba(12, 12, 242, 0.8);
    color: #FFF;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.phone .config .save-container .save .save-load-btn:hover {
    background-color: rgba(12, 12, 242, 0.539);
}

.phone .config .save-container .save .save-name-span {
    padding: 6px;
    cursor: pointer;
    width: 136.57px;
    text-align: center;
    overflow: hidden;
    height: 30px;
    white-space: nowrap;
    position: relative;
}

.phone .config .save-container .save .save-name-span::before {
    content: attr(data-text);
    position: absolute;
    animation: marquee 8s linear infinite;
    overflow: hidden;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.phone .config .save-container .save .save-delete-btn {
    background-color: red;
    color: #FFF;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.phone .config .save-container .save .save-delete-btn:hover {
    background-color: rgba(255, 0, 0, 0.477);
}

.phone .config .content-save .importexport {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.phone .config .content-save .importexport span {
    padding: 10px;
    background-color: rgba(90, 88, 95, 0.913);
    border-radius: 10px;
    color: #FFF;
    cursor: pointer;
    transition: 0.3s;
    width: 35%;
    text-align: center;
}

.phone .config .content-save .importexport span:hover {
    background-color: rgba(90, 88, 95, 0.695);
}

.phone .config .new-save-slot {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.phone .config .new-save-slot {
    display: flex;
    justify-content: center;
}

.phone .config .new-save-slot span {
    padding: 15px;
    background-color: #27a768;
    border-radius: 10px;
    color: #FFF;
    cursor: pointer;
    transition: 0.3s;
}

.phone .config .new-save-slot span:hover {
    background-color: #27a767a9;
}

.smash {
    background-color: #FFF;
    width: 98%;
    height: 100%;
    border-radius: 60px;
    display: flex;
    flex-flow: column nowrap;
}

.smash-content {
    flex: 15;
    border-radius: 60px 60px 0 0;
    overflow: hidden;
}

.smash-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
    flex: 1;
    width: 90%;
    margin: 0 auto 50px auto;
    border-bottom: 1px solid #dcdcdc;
    padding: 0 40px;
}

.smash-buttons .btn {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.smash-video {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    scroll-snap-align: start;
}

.smash-video video {
    display: flex;
    height: 100%;
    object-fit: cover;
}

.smash-feed .title {
    position: absolute;
    color: #FFF;
    top: 60px;
    transform: translateX(-50%);
    left: 50%;
    font-size: 20px;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 9;
}

.smash-video .info {
    z-index: 999;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.smash-video .reactions {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    gap: 40px;
    padding: 20px;
    z-index: 9;
}

.smash-video .reactions .btnds {
    display: flex;
    flex-flow: column-reverse nowrap;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.smash-video .reactions .btnds.pointer {
    cursor: pointer;
}

.smash-video .reactions .btnds span {
    color: #FFF;
}

.smash-video .personhashs {
    width: 100%;
    height: 70px;
}

.smash-video .personhashs .person-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 4%;
}

.smash-video .personhashs .person-info .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.smash-video .personhashs .name {
    margin-left: 0;
    color: #FFF;
    font-size: 20px;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.smash-video .hashtag-cont {
    display: flex;
    gap: 5px;
    width: 90%;
    margin-left: 4%;
    margin-top: 5px;
}

.smash-video .hashtag {
    background-color: rgba(255, 255, 255, 0.212);
    padding: 5px;
    font-size: 14px;
    color: #FFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.701);
    border-radius: 5px;
}

.smash-video .hashtag.blacked {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    color: #FFF;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
    border: 1px solid #444;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.smash-video .hashtag.bleached {
    background-color: #fdfdfd;
    color: #000;
    border: 1px solid #eee;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.smash-video .hashtag.sissified {
    background-color: #f8e6ff;
    color: #c71585;
    border: 1px dotted #e75480;
    box-shadow: 0 0 8px rgba(255, 192, 203, 0.5);
    text-shadow: 1px 1px 4px rgba(255, 192, 203, 0.5);
    font-weight: bold;
}

.smash-comments {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60%;
    align-self: center;
    background-color: #FFF;
    position: absolute;
    bottom: 0;
}

.smash-comments .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #dbdbdb;
}

.smash-comments .header span {
    font-weight: 600;
    font-size: 16px;
}

.smash-comments .space {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    padding: 15px 20px;
    z-index: 9999;
}

.smash-comments .comment {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 15px;
    z-index: 999;
}

.smash-comments .comment span {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.smash-comments .comment p {
    font-size: 14px;
    margin-top: 2px;
    color: #262626;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.smash-comments .addcomment {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-top: 1px solid #dbdbdb;
    outline: none;
    font-size: 14px;
    background-color: white;
    z-index: 999;
}

.smash-comments .addcomment::placeholder {
    color: #8e8e8e;
}

.storysmash {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.smash-header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.135);
    background-color: #FFF;
}

.storysmash .title {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    width: 100%;
    text-align: center;
    margin-top: 3px;
}

.smash-header .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.smash-header .header-icon {
    display: flex;
    background-color: rgba(176, 171, 171, 0.339);
    border-radius: 50%;
    padding: 8px;
}

.storysmash .story-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow-y: scroll;
    padding: 3px 10px;
    margin-left: 2px;
    height: calc(100% - 65px);
    margin-top: 8px;
}

.storysmash .story-item {
    width: calc(50% - 4px);
    cursor: pointer;
    position: relative;
    max-height: 362px;
}

.storysmash .story-item video {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 358px;
}

.story-item .story-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: white;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.story-item .story-user {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.story-item .story-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid white;
}

.story-item .story-user span {
    font-weight: 600;
    font-size: 14px;
}

.story-item .story-title {
    font-size: 15px;
    line-height: 1.3;
    font-weight: bold;
}

.story-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    border-radius: 8px;
    pointer-events: none;
}

.close-story {
    position: absolute;
    top: 65px;
    right: 20px;
    z-index: 9;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-story svg {
    color: white;
    width: 24px;
    height: 24px;
}

.smash-feed {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
}

.hide-scroll {
    scrollbar-width: none;
}

.hide-scroll::-webkit-scrollbar {
    display: none;
}

.smash-video .video-caption {
    position: absolute;
    bottom: 97px;
    left: 0;
    right: 0;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
}

.perfilsmash {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    border-radius: 60px 60px 0 0;
    align-items: center;
}

.perfilsmash .title {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    margin-top: 3px;
    text-align: center;
}

.perfilsmash .container {
    width: 95%;
    position: relative;
    padding: 10px;
    margin-top: 10px;
    margin-left: 2px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to top right, #e0e4ec, #f1f3f6);
}

.perfilsmash .container-title {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 600;
    padding: 2px 8px;
    background: linear-gradient(to right, #b0c4de, #dfe6f3);
    color: #333;
}

.perfilsmash .item {
    margin-top: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.perfilsmash .item:last-child {
    border-bottom: none;
}

.slider-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-line p {
    width: 100px;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    background-color: #b8b2b268;
    padding: 4px 8px;
    border-radius: 6px;
    text-align: center;
}

.slider-line.bleached p {
    color: #FFF;
}

.slider-line.blacked p {
    color: #000;
}

.slider-line.sissified p {
    color: #ec02ba;
}

.slider-line.bleached .addictions-slider {
    background-image: linear-gradient(90deg, #f9e4ae, #f8b500);
}

.slider-line.blacked .addictions-slider {
    color: #000;
    background-image: linear-gradient(90deg, #e3e0e0, #000);
}

.slider-line.sissified .addictions-slider {
    color: #ec02ba;
    background-image: linear-gradient(90deg, #fac4f0, #ec02ba);
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.emoji-thumb {
    position: absolute;
    top: -8px;
    font-size: 20px;
    pointer-events: none;
    transition: left 0.1s ease-out;
}

.second-slider .emoji-thumb {
    top: -6px;
}

.addictions-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    background-color: transparent;
    position: relative;
}

.addictions-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    z-index: 2;
}

.addictions-slider::-moz-range-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    z-index: 2;
}

.value-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    top: -35px;
    left: 0;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

.value-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.slider-line {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px;
    transition: all 0.3s ease;
}

.slider-line:hover .value-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.fav-hashtags {
    margin-top: 10px;
    display: grid;
    max-height: 94%;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    padding: 5px;
    overflow-y: scroll;
}

.fav-hashtags span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    color: #222;
    transition: transform 0.2s ease, background 0.3s ease;
    cursor: default;
}

.fav-hashtags span:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.4);
}

.container-row {
    display: flex;
    width: 95%;
    height: 57%;
    gap: 6px;
}

.container.fav {
    width: 43%;
    height: 100%;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fav-hashtags span .count {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-left: 6px;
}

.container.metter {
    height: 100%;
    padding: 12px;
}

.gauge-container {
    width: 100%;
    margin-top: 15px;
    max-width: 180px;
    height: auto;
}

.logs {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 5px;
    overflow-y: scroll;
    max-height: 42%;
}

.logs div {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    border-radius: 14px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.logs div:hover {
    transform: translateY(-1px);
}

.logs span {
    font-size: 13px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.logs span:first-child {
    background: rgba(255, 255, 255, 0.08);
    color: #333;
    white-space: normal;
    word-break: break-word;
    flex: 1;
    line-height: 1.3;
}

.logs span:last-child {
    min-width: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    color: #999;
}

.logs span:last-child[value^="+"] {
    color: #34A853;
}

.logs span:last-child[value^="-"] {
    color: #EA4335;
}

.message .cnbtnd {
    background: rgba(255, 255, 255, 1);
    color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    user-select: none;
}

.csplshh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: center center no-repeat;
    background-size: contain;
    z-index: 1000;
    animation: fadeout 10s ease forwards;
}

.store {
    background-color: #FFF;
    width: 98%;
    height: 100%;
    border-radius: 60px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.store-modern .wallpaper {
    width: 100%;
    position: absolute;
    border-radius: 0;
    padding-bottom: 50px;
}

.store .header {
    background-color: #fff;
    width: 98%;
    height: 58px;
    border-radius: 60px 60px 0 0;
}

.store .content {
    /* align-items: center;
    justify-content: center; */
    background-color: #fff;
    /* background-color: red; */
    width: 100%;
    height: 805px;
    display: flex;
    flex-direction: column;
    padding: 17px;
    overflow-y: auto;
    font-family: 'Segoe UI', sans-serif;
}

.store .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.store .section h2 {
    font-size: 20px;
    /* margin-top: 20px; */
}

.store .section h3 {
    font-size: 16px;
    margin-top: 10px;
}

.store .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.store .image-thumb {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100px;
    height: 150px;
    flex-shrink: 0;
}

.store .image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store .image-thumb.selected {
    border-color: #00f;
}

.store .show-more {
    background-color: #222;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.store .config-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.store-modern-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 12px 0;
    justify-content: space-between;
}

.store-modern-carousel::-webkit-scrollbar {
    display: none;
}

.store-modern-carousel-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 300px;
    height: 170px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background: #222;
}

.store-modern-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-modern-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    flex-direction: column;
}

.store-modern-unlock-btn {
    margin-top: 10px;
    background: linear-gradient(to right, #6c5ce7, #a29bfe);
    border: none;
    padding: 6px 16px;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.store-modern-unlock-btn:hover {
    background: linear-gradient(to right, #5a4ec9, #8b85ea);
}

.store-modern-image-index {
    position: absolute;
    top: 6px;
    right: 10px;
    background: rgba(0, 0, 0, 0.45);
    padding: 2px 8px;
    font-size: 12px;
    color: #fff;
    border-radius: 12px;
    font-weight: 500;
}

.carousel-nav {
    width: 20px;
}

.carousel-nav {
    width: 20px;
}

.notes {
    background-color: #f5f1e7;
    width: 98%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 1rem 0;
    border-radius: 60px;
    padding-top: 52px;
    padding-bottom: 30px;
}

.page {
    position: relative;
    box-sizing: border-box;
    width: 90%;
    max-width: 500px;
    margin: 0.5rem auto;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    line-height: 2.1rem;
    background: #fdfdf8;
    background-image: linear-gradient(#f5f5f0 2.1rem, #ddd 2.1rem);
    background-size: 100% 2.1rem; 
    padding: 2rem 1.5rem 2rem 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.margin {
    position: absolute;
    border-left: 2px solid #e66;
    height: 100%;
    left: 2.8rem;
    top: 0;
}

.page p {
    margin: 0; 
    padding: 0;
}

.empty-message {
    display: block;
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    text-align: center;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    line-height: 1.8rem;
    color: #555;
    background: #fdfdf8;
    border-radius: 12px;
    border: 2px dashed #e66;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

@keyframes fadeout {
    0% {
        opacity: 0.7;
    }

    60% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}

.white-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    opacity: 0;
    z-index: 999;
    pointer-events: none;
    animation: whiteFlashAnim 0.6s ease-out forwards;
}

@keyframes whiteFlashAnim {
    0% {
        opacity: 0.9;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
    }
}

.phone .insta .content .insta-comments {
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.phone .insta .content .insta-comments .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #dbdbdb;
}

.phone .insta .content .insta-comments .header span {
    font-weight: 600;
    font-size: 16px;
}

.smash-comments .header .btn {
    z-index: 9999999;
}

.phone .insta .content .insta-comments .comments-space {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
    max-height: 640px;
}

.phone .insta .content .insta-comments .comment {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.phone .insta .content .insta-comments .comment-username {
    font-weight: 600;
    font-size: 14px;
    margin-right: 6px;
}

.phone .insta .content .insta-comments .comment-text {
    font-size: 14px;
    margin-top: 2px;
    color: #262626;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.phone .insta .content .insta-comments .comment-input {
    border-top: 1px solid #dbdbdb;
    padding: 15px 20px;
    background-color: white;
}

.phone .insta .content .insta-comments .comment-input input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
}

.phone .insta .content .insta-comments .comment-input input::placeholder {
    color: #8e8e8e;
}

/* ============== Store Modern Design =============== */
.store-modern {
    background: #fff;
    width: 98%;
    height: 100%;
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.store-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.store-modern-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px 60px 0 0;
    padding: 12px 37px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    margin-top: 4px;
}

.store-modern-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-modern-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-modern-icon {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.store-modern-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF4D80, #C240A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-top: 5px;
}

.store-modern-header-right {
    display: flex;
    align-items: center;
}

.store-modern-search-icon {
    font-size: 16px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.store-modern-search-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.store-modern-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.store-modern-sections {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.store-modern-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-modern-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.store-modern-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 77, 128, 0.1);
}

.store-modern-section-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.store-modern-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.store-modern-section-badge {
    background: linear-gradient(135deg, #FF4D80, #C240A0);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 77, 128, 0.3);
}

.store-modern-category-container {
    margin-bottom: 25px;
}

.store-modern-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.store-modern-category-title {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.store-modern-category-count {
    font-size: 14px;
    color: #888;
    background: rgba(255, 77, 128, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.store-modern-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.store-modern-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: white;
}

.store-modern-image-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.store-modern-image-card.store-modern-selected {
    box-shadow: 0 0 0 2px rgba(255, 77, 128, 0.4), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.store-modern-image-card.store-modern-selected .store-modern-image-overlay {
    opacity: 1;
    background: rgba(255, 77, 128, 0.3);
}

.store-modern-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.store-modern-image-wrapper.wall {
    height: 260px;
    justify-content: center;
}

.store-modern-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-modern-image-card:hover .store-modern-image-wrapper img {
    transform: scale(1.1);
}

.store-modern-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 77, 128, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-modern-overlay-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.store-modern-load-more-btn {
    background: linear-gradient(135deg, #FF4D80, #C240A0);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 77, 128, 0.3);
    margin: 0 auto;
}

.store-modern-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 128, 0.4);
}

.store-modern-btn-icon {
    font-size: 16px;
}

.store-modern-btn-text {
    font-weight: 600;
}

.store-modern-config-panel {
    background: linear-gradient(135deg, rgba(255, 77, 128, 0.1) 0%, rgba(194, 64, 160, 0.1) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 128, 0.2);
}

.store-modern-config-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.store-modern-config-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #555;
    min-width: 120px;
}

.store-modern-config-icon {
    font-size: 16px;
}

.store-modern-config-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 77, 128, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.store-modern-config-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4D80, #C240A0);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 77, 128, 0.3);
}

.store-modern-config-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4D80, #C240A0);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 77, 128, 0.3);
}

.store-modern-config-btn {
    background: linear-gradient(135deg, #FF4D80, #C240A0);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 77, 128, 0.3);
    width: 100%;
}

.store-modern-config-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 128, 0.4);
}

.store-modern-content::-webkit-scrollbar {
    width: 6px;
}

.store-modern-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.store-modern-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF4D80, #C240A0);
    border-radius: 3px;
}

.store-modern-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e64473, #b03a8f);
}

.store-modern-image-card.locked img {
    filter: grayscale(0.8);
    opacity: 0.6;
}

.store-modern-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.store-modern-lock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    text-align: center;
    color: white;
}

.store-modern-lock-icon {
    font-size: 32px;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.store-modern-lock-requirement {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-modern-requirement-text {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.store-modern-money-requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.store-modern-money-icon {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    padding-bottom: 6px;
}

.store-modern-money-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
}

.store-modern-current-money {
    color: #90EE90;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.store-modern-separator {
    color: rgba(255, 255, 255, 0.7);
}

.store-modern-required-money {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.store-modern-unlock-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-modern-unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FF8C00);
}

.store-modern-unlock-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.store-modern-locked {
    font-size: 20px;
    color: #aaa;
}

.unlock-progress {
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    text-align: center;
}

.unlock-btn {
    background-color: #ff3399;
    color: white;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.store-modern-lock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    text-align: center;
    color: white;
}

.store-modern-category-requirement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.store-modern-category-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin-bottom: 4px;
}

.store-modern-category-points {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
}

.store-modern-current-points {
    color: #90EE90;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.store-modern-required-points {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.store-modern-lock-icon {
    font-size: 32px;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.music-app {
    background: #FFF;
    width: 98%;
    height: 100%;
    border-radius: 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    border-radius: 60px 60px 60px 60px;
}

.music-app .head {
    width: 100%;
    height: 6.5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.music-content {
    height: 88%;
}

.music-content-inner {
    background: linear-gradient(120deg, #232526 60%, #181818 100%);
    padding: 10px 15px 10px 16px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.music-player-spotify {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    background: rgba(24, 24, 24, 0.85);
    border-radius: 24px;
    padding: 24px 20px 20px 20px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
}

.music-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.music-text h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.music-text p {
    margin: 0;
    font-size: 13px;
    color: #cbd5e1;
}

.music-player-controls {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.control-button {
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    color: #181818;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    font-size: 18px;
    outline: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-button:hover {
    background: #e5e5e5;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.18);
    transform: translateY(-2px) scale(1.08);
}

.icon {
    width: 28px;
    height: 28px;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke: #181818;
    filter: none;
    display: block;
}

.icon.small {
    width: 22px;
    height: 22px;
}

.icon.yellow,
.icon.gray {
    color: #181818;
    stroke: #181818;
}

.volume-control {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.volume-label {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

.volume-slider {
    width: 100%;
    appearance: none;
    height: 8px;
    border-radius: 6px;
    background: #333;
    outline: none;
    transition: background 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #1db954;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(30, 215, 96, 0.10);
    transition: background 0.2s, border 0.2s;
}

.volume-slider:focus::-webkit-slider-thumb {
    background: #1db954;
    border: 2px solid #fff;
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #1db954;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(30, 215, 96, 0.10);
    transition: background 0.2s, border 0.2s;
}

.volume-slider:focus::-moz-range-thumb {
    background: #1db954;
    border: 2px solid #fff;
}

.music-timer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 2px;
}

.music-list-spotify {
    background: rgba(24, 24, 24, 0.98);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 475px;
    overflow-y: auto;
    box-shadow: 0 2px 12px 0 rgba(31, 41, 55, 0.10);
}

.music-list-item {
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
}

.music-list-item:hover {
    background: #232526;
    color: #1db954;
    box-shadow: 0 2px 8px 0 rgba(30, 215, 96, 0.10);
}

.track-active {
    background: #1db954;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 12px 0 rgba(30, 215, 96, 0.10);
}

.track-active span {
    color: #fff;
    font-weight: bold;
}

.music-list-info {
    display: flex;
    flex-direction: column;
}

.music-list-info .duration {
    font-size: 13px;
    color: #b3b3b3;
}

.now-playing {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background: #1db954;
    border-radius: 8px;
    padding: 2px 8px;
    margin-left: 8px;
    box-shadow: 0 1px 4px 0 rgba(30, 215, 96, 0.10);
}

@media (max-width: 768px) {
    .store-modern-image-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
    }

    .store-modern-image-wrapper {
        height: 140px;
    }

    .store-modern-title {
        font-size: 20px;
    }

    .store-modern-section-title {
        font-size: 20px;
    }
}

@media (max-width: 1560px) {
    .phone {
        width: 410px;
    }

    .phone .config .save-container {
        height: 340px;
        width: 85%;
    }

    .whats .chat {
        height: 87.5%;
    }

    .whats .chat .messages {
        height: 92.2%;
    }

    .chat .decorative-options-bottom {
        bottom: 6.5%;
    }

    .modal {
        border-radius: 45px;
        left: 19px;
    }
}

@media (max-width: 1024px) {
    .phone {
        width: 410px;
    }

    .modal {
        border-radius: 47px;
    }

    .whats .chat {
        height: 86.5%;
    }

    .whats .nav {
        height: 7.5%;
    }

    .chat .decorative-options-bottom {
        bottom: 6.5%;
    }

    .phone .insta .content {
        height: 94%;
    }

    .phone .config .save-container {
        height: 384px;
    }
}

@media (max-width: 500px) {
    .screen {
        width: 96%;
    }

    .btn-container.apps {
        gap: 11px;
    }
}

@media (max-width: 430px) {
    .phone {
        justify-content: center;
        width: 100vw;
    }

    .phone .config .save-container .save {
        width: 95%;
    }

    .phone .config .save-container .save input {
        width: 116.312px;
    }

    .whats .chat .messages {
        height: 93%;
    }
}

@media (max-width: 410px) {
    .phone {
        justify-content: center;
    }
}

@media (max-width: 390px) {
    .phone {
        justify-content: center;
    }

    .phone .config .save-container .save {
        width: 98%;
    }
}

@media (max-width: 380px) {
    .whats .chat .messages {
        height: 91%;
    }
}

@media (max-width: 360px) {
    .whats .chat .messages {
        height: 92%;
    }

    .phone {
        justify-content: center;
    }

    .phone .config .save-container {
        height: 338px;
    }

    .phone .event .content .edial .perfil-edial {
        width: 40px;
        height: 40px;
    }

    .btn-container.apps {
        gap: 9px;
    }
}
